/* Ryan Rowe https://elizabeth99.neocities.org/Lab%206/Lab%206.html */
header {
    border-bottom: 2px double grey;
    background-color: #C0C0C0;
    margin-top: -0.5em;
 }
     
header h2{
    text-align: center;
    
}
 nav {
    background-color: #006699;
    float: left;
    width: 20%;
    clear: left;
    min-height: 530px;
    border-right: 1px solid black;
 }

nav h3 {
    color: white;
    margin-bottom: -0.5em;
    margin-left: 0.5em;
}
 
.menu {
    width: 20%;
}

.menu li {
 list-style-type: none;
 margin-right: 0.5em;  
 margin-left: -2.5em;
 background-color: #009999; 
}

.menu a { 
    color: white; 
    display: block;
    padding: 10px;
    text-decoration: none;
}

.menu a:hover {
    background-color: #c0c0c0; /* Dark grey background on mouse-over */
}

 section {
    float: left;
    width: 77.8%;
    padding-left: 1em;
    background-color: aliceblue;
 }
 
 footer {
    clear: both;
    border-top: 2px double grey;
    text-align: center;
    background-color: #008080;
 }